.game-tile {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  /* background-color: #ffffff; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.game-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.game-tile img {
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.game-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 75, 141, 0.85);
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.game-tile:hover .game-info {
  opacity: 1;
}

.game-info h5 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.game-info p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.btn-light {
  color: #004b8d;
  background-color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
}

.btn-light:hover {
  background-color: #dbe9f6;
}